home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
64'er 1992 July
/
64er_Magazin_92-07_1992-12-02_Markt__Technik_de.d64
/
cls-demo 2
(
.txt
)
< prev
next >
Wrap
Commodore BASIC
|
2022-10-26
|
523b
|
23 lines
10 rem ***********************
20 rem * *
30 rem * cls-demo 2 in basic *
40 rem * *
50 rem ***********************
60 rem variablen analog cls-demo 1
70 :
110 gosub 210:rem text auf bildschirm
120 fs=55296:sp=40:fe=fs+sp
130 fb=peek(53281)
140 : for x=0 to 20
150 : for y=0to24*40 step 40
160 : poke fs+y+x,fb
170 : poke fe+y-x,fb
180 : next y
190 : next x
200 end
210 :
220 rem "subroutine zum text schreiben"
230 for i=0to22
240 print"clear-screen-demo in basic 64'er 07 1992";:next
250 return